From 8e0e11347914ade692516ef9bc3d9b9de6ceb99e Mon Sep 17 00:00:00 2001 From: justbur Date: Sun, 18 Oct 2015 14:15:48 -0400 Subject: [PATCH] Cleanup previous commit --- which-key.el | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/which-key.el b/which-key.el index 0397722bc45..d6c198b2947 100644 --- a/which-key.el +++ b/which-key.el @@ -1220,9 +1220,8 @@ BUFFER that follow the key sequence KEY-SEQ." (defun which-key--n-empty-strings (n) "Produce a list of N empty strings." (let (res) - (dotimes (_i n) - (setq res (cons "" res))) - res)) + (dotimes (_i n res) + (setq res (cons "" res))))) (defun which-key--pad (columns) "Pad COLUMNS to the same length using empty strings." -- 2.30.2